home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / FileManager.idl < prev    next >
Text File  |  1996-05-01  |  32KB  |  805 lines

  1. /*
  2.      File:        FileManager.idl
  3.  
  4.      Contains:    FileManager Interface
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __FILEMANAGER_IDL__
  19. #define __FILEMANAGER_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __FILEMANAGERTYPES_IDL__
  25. #include <FileManagerTypes.idl>
  26. #endif
  27. #ifndef __FILES_IDL__
  28. #include <Files.idl>
  29. #endif
  30. #ifndef __FINDER_IDL__
  31. #include <Finder.idl>
  32. #endif
  33.  
  34. #ifdef __SOMIDL__
  35.  
  36. /* You can use FileManager.h or FileManagerSPI.h, but not both */
  37. #ifndef _FILEMANAGERSPI__
  38. #if FOR_SYSTEM8_PREEMPTIVE
  39. /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>> F o u n d a t i o n  D e f i n i t i o n s <<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
  40. /*
  41. ****************************************************************************
  42.     CONSTANTS & TYPES
  43. ****************************************************************************
  44. */
  45. typedef UInt32                    FSInfoVersion;
  46.  
  47. typedef UInt32                    FSPathnameType;
  48.  
  49. typedef OptionBits                FSFileFlags;
  50.  
  51. typedef SOMLargeStruct            FSFileInformation;            /* Derived from a struct of 84 bytes in size */
  52.  
  53. typedef OpaquePtr                FSFileInformationPtr;        /* Substituted OpaquePtr for ``FSFileInformation*'' */
  54.  
  55. typedef OptionBits                FSFolderFlags;
  56.  
  57. typedef SOMLargeStruct            FSFolderInformation;        /* Derived from a struct of 68 bytes in size */
  58.  
  59. typedef OpaquePtr                FSFolderInformationPtr;        /* Substituted OpaquePtr for ``FSFolderInformation*'' */
  60.  
  61. typedef OptionBits                FSVolumeFlags;
  62.  
  63. typedef SOMLargeStruct            FSVolumeInformation;        /* Derived from a struct of 104 bytes in size */
  64.  
  65. typedef OpaquePtr                FSVolumeInformationPtr;        /* Substituted OpaquePtr for ``FSVolumeInformation*'' */
  66.  
  67. typedef SOMLargeStruct            FSObjectInformation;        /* Derived from a struct of 260 bytes in size */
  68.  
  69. typedef OpaquePtr                FSObjectInformationPtr;        /* Substituted OpaquePtr for ``FSObjectInformation*'' */
  70.  
  71. /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C O N T A I N E R S <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
  72. /*
  73. ****************************************************************************
  74.     OBJECTS
  75. ****************************************************************************
  76. */
  77. /*
  78.     Function:    FSObjectRefClone
  79.     Purpose:    Return a copy of an FSObjectRef such that the copy also needs to be disposed.
  80.     Inputs:
  81.                 object_t        The object ref to be cloned.
  82.     Outputs:
  83.                 clone_o            Copy of object_t.
  84.     Notes:
  85.                 The value returned is the same value passed as input in object_t.  This call
  86.                 would typically be used to balance a future call to FSObjectRefDispose.  Some
  87.                 examples where it might be used:
  88.                     * A called procedure needs to save an FSObjectRef for future use, but the
  89.                       calling conventions dictate that the caller is responsible for disposing
  90.                       of the ref.  The called function could call FSObjectRefClone to make its
  91.                       copy.  The caller can safely dispose of the ref, yet the callee can use
  92.                       the ref until doing its own dispose.
  93.                     * In object-oriented programming, an object could be passed an FSObjectRef
  94.                       in its constructor.  The destructor would be expected to dispose the ref,
  95.                       but so would the routine that created the object.  FSObjectRefClone could
  96.                       be used in the constructor.
  97.                 
  98.                 The returned FSObjectRef is registered to the calling process (as must object_t).
  99. */
  100. /*
  101.     Function:    FSObjectRefDispose
  102.     Purpose:    Dispose of an FSObjectRef previously returned to a process.
  103.     Inputs:
  104.                 object_t        The object ref to be disposed.
  105.     Outputs:
  106.     Notes:
  107.                 A process must dispose of all FSObjectRefs returned to it.  The FSObjectRefs
  108.                 may be returned as explicit output parameters, or as properties.  If a ref
  109.                 is returned several times for a given object, it must be disposed for each
  110.                 time it was returned.
  111.                 
  112.                 When all refs to a given object are disposed, the File Manager will dispose
  113.                 of any resources it allocated in order to operate on that object.  All refs
  114.                 for a process will be automatically disposed upon process termination.
  115.                 
  116.                 For refs returned as properties (especially when iterating over muliple
  117.                 objects), the FSObjectRefDisposeBulk call may be more convenient.
  118. */
  119. /*
  120.     Function:    FSObjectFlush
  121.     Purpose:    Flushes any data cached by the File Manager for the given object.
  122.     Inputs:
  123.                 object_t        The object to be flushed.
  124.     Outputs:
  125.     Notes:
  126.                 If object_t is a file, then any data written to that file (via a stream or backing store,
  127.                 regardless of the process that opened the stream or backing store) will be written by the
  128.                 File Manager to any underlying device.  If object_t is a volume, then any data written to
  129.                 any file on that volume will be flushed.
  130.                 
  131.                 Any change to properties of object_t will be flushed (regardless of the object's type).
  132.                 
  133.                 Data about the object (or contained in the object) may still reside in the File Manager's
  134.                 caches, but any changes will have been written out by the File Manager.  Note that the
  135.                 underlying device's driver, or the device itself, may cache some data, so the File Manager
  136.                 cannot guarantee that all data has actually been written to the underlying media.
  137.  
  138.  
  139.  
  140. */
  141. /*
  142.     Function:    FSObjectRefRegister
  143.     Purpose:    Allow an FSObjectRef to be used by another process.
  144.     Inputs:
  145.                 senderObject_t        The object ref.
  146.                 receiverPid_i        The other process that will be using senderObject_t.
  147.     Outputs:
  148.     Notes:
  149.                 This call allows one process to send an FSObjectRef to another process
  150.                 such that the other process can use the FSObjectRef itself.  The process
  151.                 specified by receiverPid_i must also dispose of senderObject_t.  The File
  152.                 Manager acts as if senderObject_t has been returned to receiverPid_i.
  153.  
  154.  
  155.  
  156.  
  157.  
  158.                 You might use this call if you have several processes where one process
  159.                 (typically a server of some kind) obtains FSObjectRefs for use by other
  160.                 processes (typically clients of that server).  If the other process (as
  161.                 specified by receiverPid_i) won't actually call the File Manager with
  162.                 that FSObjectRef, then it doesn't need to be registered to that process.
  163.  
  164.                 It would also be possible to have the server process make all of the
  165.                 calls to the File Manager.  FSObjectRefs could still be passed between
  166.                 client and server, but if the clients never use the refs directly, then
  167.                 there would be no need to register the refs to those clients.  (But beware:
  168.                 the server would still be responsible for disposing of all refs returned to
  169.                 it; the server would probably have some cleanup and disposal to do if one
  170.                 of its client processes were to terminate.)
  171. */
  172. /*
  173. ============================================================================
  174.     Volume Sets
  175. ============================================================================
  176. */
  177. /*
  178.     Function:    FSVolumeSetGetInformation
  179.     Purpose:    Returns an FSObjectRef for a Volume Set specified by an
  180.                 FSVolumeSetObjID.
  181.     Inputs:
  182.                 volumeSet_t                The volume set.
  183.     Outputs:
  184.                 object_o                Object ref for the volume set.
  185.                 includesBootVolume_o    True if the volume set includes the boot volume.
  186.     Notes:
  187.                 There is currently only one volume set.  In the future there could be others
  188.                 (perhaps file servers; perhaps to support multiple local users).
  189. */
  190. /*
  191. ============================================================================
  192.     Folders
  193. ============================================================================
  194. */
  195. /*
  196.     Function:    FSFolderCreate
  197.     Purpose:    Create a new named folder within a specified folder
  198.     Inputs:
  199.                 containerRef_t        The object ref of the parent of the new folder.
  200.                 folderName_i        The name of the new folder as a _persistent_ TextObject.
  201.     Outputs:
  202.                 folderRef_o            The object ref of the new folder.
  203.     Notes:
  204.                 An error will be returned if the folder already exists.
  205. */
  206. /*
  207. ============================================================================
  208.     Files
  209. ============================================================================
  210. */
  211. /*
  212.     Function:    FSFileCreate
  213.     Purpose:    Create a new named file within a specified folder
  214.     Inputs:
  215.                 containerRef_t        The object ref of the parent of the new file.
  216.                 fileName_i            The name of the new file as a _persistent_ TextObject.
  217.                 fileCreator_i        The new file's Finder creator.
  218.                 fileType_i            The new file's Finder type.                
  219.     Outputs:
  220.                 fileRef_o            The object ref of the new file.
  221.     Notes:
  222.                 An error will be returned if the file already exists.
  223. */
  224. /*
  225. ============================================================================
  226.     Folder and File Requests
  227. ============================================================================
  228. */
  229. /*
  230.     Function:    FSObjectDelete
  231.     Purpose:    Deletes an object.  The FSObjectRef is NOT disposed; you must still dispose it yourself.
  232.                 Further attempts to use the ref will return errors (such as E_ObjectNotFound).
  233.  
  234.     Inputs:
  235.                 object_t        The object to be deleted.
  236.     Outputs:
  237. */
  238. /*
  239.     Function:    FSObjectMoveRename
  240.     Purpose:    Move a file or folder to a new folder and (optionally) rename it.
  241.     Inputs:
  242.                 sourceObjectRef_t    The object ref of the file or folder to move.
  243.                 destContainerRef_i    The object ref of the new parent folder.
  244.                 newObjectName_i        The new name for the moved file or folder (optional).
  245.     Outputs:
  246.     Notes:
  247.                 An error will be returned if another file or folder exists in the
  248.                 folder specified by destContainerRef_i which has the same name as
  249.                 sourceObjectRef_t.
  250. */
  251. /*
  252.     Function:    FSObjectRename
  253.     Purpose:    Rename a file or folder.
  254.     Inputs:
  255.                 sourceObjectRef_t    The object ref of the file or folder to rename.
  256.                 newObjectName_i        The new name for the file or folder.
  257.     Outputs:
  258.     Notes:
  259.                 An error will be returned if another file or folder exists in the
  260.                 same folder as sourceObjectRef_t with the name newObjectName_i.
  261. */
  262. /*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> C a p a b i l i t i e s <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
  263. /*
  264. ****************************************************************************
  265.     PROPERTY ACCESS METHODS
  266. ****************************************************************************
  267. */
  268. /*
  269. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  270.     Object Property Simple Values
  271. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  272. */
  273. /*
  274.     Function:    FSObjectGetOneProperty
  275.     Purpose:    Get one property attribute of an object.
  276.     Inputs:
  277.                 objectRef_t            The object ref.
  278.                 property_i            The property attribute to get.
  279.                 propertySize_i        The size of the property buffer specified
  280.                                     by propertyValue_o
  281.     Outputs:
  282.                 property_o            The requested property data.
  283.     Notes:
  284.                 This function can be used to get the value of a simple property as
  285.                 well as other attributes of all properties such as size, type,
  286.                 state, etc. The attribute to get is specified by
  287.                 property_i->attribute.
  288.                 
  289.                 Fork property values must be obtained by using the stream or mapped
  290.                 file access routines.
  291. */
  292. /*
  293.     Function:    FSObjectGetInformation
  294.     Purpose:    Get a predefined aggregate property set for an object.
  295.     Inputs:
  296.                 objectRef_t            The object ref.
  297.                 infoVersion_i        The version of the FSObjectInformation data record
  298.                                     specified by objectInfo_o.
  299.     Outputs:
  300.                 objectInfo_o        The aggregate property data (optional).
  301.                 objectName_o        The name of the specified object (optional).
  302.     Notes:
  303.                 Use kFSInfoCurrentReleasedVersion for infoVersion_i to specify the latest
  304.                 version of the FSObjectInformation record. infoVersion_i is ignored
  305.                 if objectInfo_o is omitted.
  306.                 
  307.                 objectName_o, if specified, must reference a preinitialized persistent
  308.                 TextObject of sufficient size to contain the object's name.
  309. */
  310. /*
  311.     Function:    FSObjectGetVolumeInformation
  312.     Purpose:    Get a predefined aggregate property set for a volume object.
  313.     Inputs:
  314.                 volumeItemRef_t        The object ref of a file or folder on the volume or
  315.                                     the volume itself.
  316.                 infoVersion_i        The version of the FSObjectInformation data record
  317.                                     specified by volumeInfo_o.
  318.     Outputs:
  319.                 volumeInfo_o        The aggregate volume property data (optional).
  320.                 volumeObjectRef_o    The object ref of the volume (optional).
  321.                 volumeName_o        The name of the volume (optional).
  322.     Notes:
  323.                 Use kFSInfoCurrentReleasedVersion for infoVersion_i to specify the latest
  324.                 version of the FSObjectInformation record. infoVersion_i is ignored
  325.                 if volumeInfo_o is omitted.
  326.                 
  327.                 volumeName_o, if specified, must reference a preinitialized persistent
  328.                 TextObject of sufficient size to contain the volume's name.
  329.                 
  330.                 This function is functionally equivalent to FSObjectGetInformation when
  331.                 the target object ref is the volume's object ref.
  332. */
  333. /*
  334.     Function:    FSObjectSetOneProperty
  335.     Purpose:    Set one property attribute of an object.
  336.     Inputs:
  337.                 objectRef_t            The object ref.
  338.                 property_i            The property attribute to set.
  339.                 propertySize_i        The size of the property buffer specified
  340.                                     by propertyValue_i.
  341.                 propertyData_i        The new property data.
  342.     Outputs:
  343.     Notes:
  344.                 Fork property values must be changed by using the stream or mapped
  345.                 file access routines.
  346. */
  347. /*
  348. ============================================================================
  349.     Stream-based Access Method
  350. ============================================================================
  351. */
  352. /*
  353.     Function:    FSStreamClose
  354.     Purpose:    Close a stream previously opened with FSStreamOpen or FSStreamOpenWithConstraints.
  355.     Inputs:
  356.                 stream_t            The stream to close.
  357.     Outputs:
  358.     Notes:
  359.                 Any data written to the stream is flushed (written by the File Manager) before the
  360.                 stream is closed.  The FSStreamObjID, stream_t, may no longer be used.  Any resources
  361.                 allocated by the File Manager for use by this stream will be disposed.
  362. */
  363. /*
  364.     Function:    FSStreamFlush
  365.     Purpose:    Any data written to the stream will be written by the File Manager.
  366.     Inputs:
  367.                 stream_t            The stream to flush.
  368.     Outputs:
  369.     Notes:
  370.                 Stream data may still reside in the File Manager's caches, but any changes will have
  371.                 been written out by the File Manager.  Note that the underlying device's driver, or
  372.                 the device itself, may cache some data, so the File Manager cannot guarantee that
  373.                 all data has actually been written to the underlying media.
  374.                 
  375.                 Other information about the object (such as its modification date) might not be flushed
  376.                 by this call, though any volume-level data needed to access the stream will be.
  377.  
  378.  
  379. */
  380. /*
  381.     Function:    FSStreamGetAbsoluteEOF
  382.     Purpose:    Get the logical end-of-file of an open file fork.
  383.     Inputs:
  384.                 stream_t            The target stream.
  385.     Outputs:
  386.                 currentEOF_o        The logical end-of-file of the specified
  387.                                     stream.
  388.     Notes:
  389. */
  390. /*
  391.     Function:    FSStreamGetMark
  392.     Purpose:    Returns the current mark (position offset) for a stream.
  393.     Inputs:
  394.                 stream_t            The stream.
  395.     Outputs:
  396.                 currentMark_o        Current offset in the stream, stream_t.
  397.     Notes:
  398.                 This call returns the offset from the start of the file that would be
  399.                 equivalent to using a FSForkPositionDescriptor whose positionOffset is
  400.                 0, and whose positionMode is kFSFromMark.  A stream's mark is set to
  401.                 the byte following the last read or write, or via FSStreamSetMark.
  402. */
  403. /*
  404.     Function:    FSStreamOpen
  405.     Purpose:    Open a file fork for stream access.
  406.     Inputs:
  407.                 fileObjectRef_t        The object ref of the file to open.
  408.                 fork_i                The fork to open.
  409.     Outputs:
  410.                 stream_o            The new stream ID.
  411.     Notes:
  412.                 The only allowable values for fork_i are kFSDataFork and
  413.                 kFSResourceFork.
  414.                 
  415.                 FSStreamOpen attempts to open the fork with exclusive read/write
  416.                 access. If the file is locked or is open on another stream with
  417.                 conflicting access constraints, then an error is returned. Use
  418.                 FSStreamOpenWithConstraints() to specify particular access
  419.                 constratins.
  420. */
  421. /*
  422.     Function:    FSStreamSetAbsoluteEOF
  423.     Purpose:    Set the logical end-of-file of an open file fork.
  424.     Inputs:
  425.                 stream_t            The target stream.
  426.                 eof_i                The new logical end-of-file of the stream.
  427.     Outputs:
  428.     Notes:
  429.                 If there is not enough space on the volume to set the EOF of
  430.                 the fork specified by stream_t to eof_i, then the EOF is not
  431.                 changed and an error is returned.
  432. */
  433. /*
  434.     Function:    FSStreamSetMark
  435.     Purpose:    Sets the current mark (position offset) for a stream.
  436.     Inputs:
  437.                 stream_t            The stream.
  438.                 newPosition_i        The new position of the stream's mark.
  439.                 options_i
  440.     Outputs:
  441.                 originalMark_o        The stream's mark, before being changed (relative
  442.                                     to the start of the stream).
  443.                 currentMark_o        The new mark, relative to the start of the stream.
  444.     Notes:
  445.                 A stream's mark is usually used for sequential access to a stream,
  446.                 or to position relative to the ending position of the last operation
  447.                 on a stream.  This call lets you explicitly set the mark for future
  448.                 operations that will operate relative to the current mark.
  449.                 
  450.                 If kFSMarkPinToEOF is set in options_i, and the new position specified
  451.                 by newPosition_i would exceed the current end of the stream (also known
  452.                 as End Of File or EOF), then the mark will be set to the EOF and E_NoError
  453.                 is returned.  Otherwise, an error will returned.  The mark may never be
  454.                 set past the end of the stream.
  455.  
  456.  
  457. */
  458. /*
  459.     Function:    FSStreamSimpleRead
  460.     Purpose:    Read data from an open stream.
  461.     Inputs:
  462.                 stream_t            The target stream.
  463.                 requestLength_i        The number of bytes to read from the fork.
  464.                 position_i            The starting position for the read operation
  465.                 
  466.     Outputs:
  467.                 data_o                The address of a buffer to the read bytes.
  468.                 actualLength_o        The actual number of bytes read from the file (optional).
  469.                 currentMark_o        The mark position within the stream after the
  470.                                     read operation (optional)
  471.     Notes:            
  472.                 The stream mark is always positioned after the last byte read after all
  473.                 calls to FSStreamSimpleRead().
  474.  
  475.                 If an attempt is made to read beyond the logical EOF of the fork, then
  476.                 the mark is set at the logical EOF of the file, actualLength_o contains
  477.                 the actual number of bytes read, and an error is returned.
  478. */
  479. /*
  480.     Function:    FSStreamSimpleWrite
  481.     Purpose:    Write data to an open stream.
  482.     Inputs:
  483.                 stream_t            The target stream.
  484.                 requestLength_i        The number of bytes to write to the fork.
  485.                 data_i                The address of a buffer contating the data to write.
  486.                 position_i            The starting position for the write operation
  487.                 
  488.     Outputs:
  489.                 actualLength_o        The actual number of bytes written to the file (optional).
  490.                 currentMark_o        The mark position within the stream after the
  491.                                     read operation (optional)
  492.     Notes:            
  493.                 The stream mark is always positioned after the last byte written after all
  494.                 calls to FSStreamSimpleWrite().
  495.  
  496.                 If an attempt is made to write beyond the logical EOF of the fork, then
  497.                 the EOF is moved to the byte following the last written byte.
  498. */
  499. /*
  500. ============================================================================
  501.     Memory-mapped Access Method(Backing Store Requests)
  502. ============================================================================
  503. */
  504. /*
  505.     Function:    FSMappedFileClose
  506.     Purpose:    Closes an access path to a file used for backing store.
  507.     Inputs:
  508.                 backingStore_t        The backing store object.
  509.     Outputs:
  510.     Notes:
  511.                 Basically the same as FSStreamClose, but for a backing store.
  512.                 
  513.                 All data written to this backing store (by writing to pages backed by
  514.                 this store) will be flushed (written) by the File Manager.
  515. */
  516. /*
  517.     Function:    FSMappedFileFlush
  518.     Purpose:    Any data written via the backing store will be written by the File Manager.
  519.     Inputs:
  520.                 backingStore_t        The backing store to flush.
  521.     Outputs:
  522.     Notes:
  523.                 Data may still reside in the File Manager's caches, but any changes will have been
  524.                 written out by the File Manager.  Note that the underlying device's driver, or the
  525.                 device itself, may cache some data, so the File Manager cannot guarantee that all
  526.                 data has actually been written to the underlying media.
  527.                 
  528.                 Other information about the object (such as its modification date) might not be flushed
  529.                 by this call, though any volume-level data needed to access the fork data will be.
  530. */
  531. /*
  532.     Function:    FSMappedFileGetAbsoluteEOF
  533.     Purpose:    Return the EOF (length) of the fork being accessed by the given backing store.
  534.     Inputs:
  535.                 backingStore_t        The backing store used to access the fork.
  536.     Outputs:
  537.                 currentEOF_o        The size, in bytes, of the fork.
  538.     Notes:
  539.                 Since access to a fork via a backing store (i.e. memory mapped file access) is
  540.                 accomplished by directly accessing memory pages, the virtual memory system must
  541.                 read and write entire pages.  If the last page is modified, the entire page is
  542.                 written, resulting in the fork size being rounded up to a multiple of a page size.
  543.                 Similarly for access to pages beyond the fork's EOF.
  544.                 
  545.                 This call returns the current EOF (length) of the underlying fork.  This may be
  546.                 set implicitly by writing to backed pages, or by using the FSMappedFileSetEOF
  547.                 call.  It may also be changed by streams opened to the same fork.
  548. */
  549. /*
  550.     Function:    FSMappedFileOpen
  551.     Purpose:    Open a file fork for memory mapped access.
  552.     Inputs:
  553.                 fileObjectRef_t        The object ref of the file to open.
  554.                 fork_i                The fork to open.
  555.     Outputs:
  556.                 backingStore_o        The backing store used to access the fork.
  557.     Notes:
  558.                 The only allowable values for fork_i are kFSDataFork and
  559.                 kFSResourceFork.
  560.                 
  561.                 FSMappedFileOpen attempts to open the fork with exclusive read/write
  562.                 access. If the file is locked or is open on another stream with
  563.                 conflicting access constraints, then an error is returned. Use
  564.                 FSMappedFileOpenWithConstraints() to specify particular access
  565.                 constratins.
  566. */
  567. /*
  568.     Function:    FSMappedFileSetAbsoluteEOF
  569.     Purpose:    Sets the EOF (length) of the fork being accessed by the given backing store.
  570.     Inputs:
  571.                 backingStore_t        The backing store used to access the fork.
  572.                 eof_i                The new length (EOF) of the fork.
  573.     Outputs:
  574.                 currentEOF_o        The new size, in bytes, of the fork.
  575.     Notes:
  576.                 Since access to a fork via a backing store (i.e. memory mapped file access) is
  577.                 accomplished by directly accessing memory pages, the virtual memory system must
  578.                 read and write entire pages.  If the last page is modified, the entire page is
  579.                 written, resulting in the fork size being rounded up to a multiple of a page size.
  580.                 Similarly for access to pages beyond the fork's EOF.
  581.                 
  582.                 This call allows the EOF to be explicitly set for a fork being accessed via a
  583.                 backing store.  Any data beyond the EOF will not actually be written to the fork.
  584.                 The File Manager has no way to detect whether access to pages occurs beyond the
  585.                 EOF; it is a programming error to access bytes beyond the EOF via a backing store.
  586.                 
  587.                 This call would typically be used when a fork has been memory mapped to enable
  588.                 convenient access to a file's data structures as if it were completely in memory.
  589.                 You would make all changes to the data structures, then use this call to indicate
  590.                 the number of bytes that are valid and should be written to the fork.
  591. */
  592. /*
  593. ****************************************************************************
  594.     NAVIGATION & ENUMERATION
  595. ****************************************************************************
  596. */
  597. /*
  598. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  599.     Object Iteration
  600. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  601. */
  602. /*
  603.     Function:    FSObjectIterateOnce
  604.     Purpose:    Iterate to the next object in the current container and get
  605.                 aggregate property information.
  606.     Inputs:
  607.                 iterator_t                The object iterator.
  608.                 objectInfoVersion_i        The version of the FSObjectInformation data record
  609.                                         specified by objectInfo_o.
  610.     Outputs:
  611.                 objectInfo_o            Aggregate property information about the current
  612.                                         iterator object (optional).
  613.                 objectRef_o                The object ref of the current iterator object (optional).
  614.                 objectName_o            The name of the current iterator object (optional).
  615.     Notes:
  616.                 Use kFSInfoCurrentReleasedVersion for infoVersion_i to specify the latest
  617.                 version of the FSObjectInformation record. infoVersion_i is ignored
  618.                 if objectInfo_o is omitted.
  619.                 
  620.                 objectName_o, if specified, must reference a preinitialized persistent
  621.                 TextObject of sufficient size to contain the object's name.
  622.  
  623.                 If the iterator has reached the end of it's current container, then an
  624.                 exception will be returned.
  625. */
  626. /*
  627.     Function:    FSObjectIteratorChangeCurrentScope
  628.     Purpose:    Move an object iterator into or out of a container.
  629.     Inputs:
  630.                 iterator_t        The object iterator.
  631.                 movement_i        The direction to move: into or out of a container.
  632.     Outputs:
  633.     Notes:
  634.                 If movement_i is kFSObjectEnter, then the iterator must be positioned on
  635.                 an object that is capable of containing other objects; it does not need to
  636.                 actually contain any objects at that time.  That object will become the new
  637.                 current scope of the iterator and it will be in Start Of Iteration state
  638.                 (meaning that all objects in the current scope have yet to be returned).
  639.                 The iterator will not be positioned on any object.
  640.                 
  641.                 If movement_i is kFSObjectExit,  then the current scope will become the object
  642.                 that contains the current scope; the iterator's new position will be the object
  643.                 that was the current scope.  If the current scope and the outermost scope were
  644.                 the same, then the outermost scope will also change to the new current scope and
  645.                 E_ExitIteratorScope is returned (so that you realize you will be iterating outside
  646.                 of the scope that you used to create the iterator; the iterator remains usable).
  647.                 
  648.                 Object iterators keep track of all of the objects between the outermost scope and
  649.                 the current scope (this is known as the "scope stack").  If any object in the scope
  650.                 stack is moved, the iterator is invalidated and will return the error
  651.                 E_IteratorScopeException until it has been explicitly fixed (by FSObjectIteratorRecreate)
  652.                 or disposed.  This call adds or removes objects from the scope stack.
  653. */
  654. /*
  655.     Function:    FSObjectIteratorCreate
  656.     Purpose:    Create an iterator for iterating over objects.
  657.     Inputs:
  658.                 outermostScope_t        The initial outermost scope and current scope.
  659.                 options_i                Controls whether the iterator will traverse objects in
  660.                                         a single container or all embedded (nested) containers.
  661.                                         Also controls which kinds of objects will be returned.
  662.     Outputs:
  663.                 iterator_o                The object iterator.
  664.     Notes:
  665.                 The outermost scope and current scope of the iterator are set to outermostScope_t.
  666.                 The iterator is not positioned on any object, though it is inside outermostScope_t.
  667.                 OutermostScope_t must be an object capable of containing other objects (such as the
  668.                 Universe, a volume set, a volume, or a folder).  The iterator is put into "Start Of
  669.                 Iteration" state, meaning that all objects in the current scope have yet to be
  670.                 returned.
  671.                 
  672.                 The File Manager allocates resources and maintains state for every iterator.  When
  673.                 you have finished using an iterator, you should call FSObjectIteratorDispose to dispose
  674.                 of it.
  675. */
  676. /*
  677.     Function:    FSObjectIteratorDispose
  678.     Purpose:    Dispose of an object iterator.
  679.     Inputs:
  680.                 iterator_t        The object iterator.
  681.     Outputs:
  682.     Notes:
  683.                 The File Manager will dispose of the iterator and release any resources
  684.                 allocated to the iterator.  Further attempts to use the iterator will result
  685.                 in an error.
  686.  
  687.  
  688. */
  689. /*
  690.     Function:    FSObjectIteratorRestart
  691.     Purpose:    Place an object iterator in the Start Of Iterator state, in its current scope.
  692.     Inputs:
  693.                 iterator_t        The object iterator.
  694.     Outputs:
  695.     Notes:
  696.                 The iterator is not positioned on any object.  The iterator is put into "Start Of
  697.                 Iteration" state, meaning that all objects in the current scope have yet to be
  698.                 returned.
  699.                 
  700.                 You would use this call to completely restart iteration within the current scope,
  701.                 ignoring any state about objects previously returned in the current scope.  The
  702.                 outermost scope is not affected.  State information about which objects have been
  703.                 returned from scopes outside the current scope is unchanged.
  704. */
  705. /*
  706. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  707.     Object Resolution
  708. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  709. */
  710. /*
  711.     Function:    FSObjectCreateRef
  712.     Purpose:    Get the object ref for a named object in a given container.
  713.     Inputs:
  714.                 container_i                The object container ref.
  715.                 objectName_i            The name of the target object.
  716.     Outputs:
  717.                 objectRef_o                The resulting object ref.
  718.     Notes:
  719. */
  720. /*
  721.     Function:    FSObjectExchange
  722.     Purpose:    Exchange the properties of two objects.  Typically used for "safe
  723.                 saving", while maintaining an object's persistent reference.
  724.     Inputs:
  725.                 object1_i        One object.
  726.                 object2_i        The object to exchange it with.
  727.     Outputs:
  728.     Notes:
  729.                 This call is used to allow a "safe save" that preserves an object's
  730.                 persistent reference.  For example, you might want to save an updated
  731.                 set of properties to an object so that any errors while saving result
  732.                 in the object being unchanged; but, you also want the object's persistent
  733.                 reference to remain unchanged (so that things like aliases still work).
  734.                 
  735.                 What you would do is create a second object somewhere (in a temporary
  736.                 folder, for example).  Write out all of the properties, both unchanged
  737.                 and changed, to the second object.  When done saving, you would call
  738.                 FSObjectExchange with both objects; the contents of the two objects get
  739.                 swapped in such a way that the original object has the new properties,
  740.                 but retains its old persistent reference.
  741.  
  742.  
  743. */
  744. /*
  745.     Function:    FSObjectGetContainerRef
  746.     Purpose:    Get the object ref for the container of a given object.
  747.     Inputs:
  748.                 objectRef_i                The object of interest.
  749.     Outputs:
  750.                 containerRef_o            The object ref of the container of
  751.                                         containerRef_o.
  752.     Notes:
  753. */
  754. /*
  755.     Function:    FSObjectRefGetFSSpec
  756.     Purpose:    Return an FSSpec for an object (suitable for use with the Files API).
  757.     Inputs:
  758.                 object_t            The object.
  759.     Outputs:
  760.                 fSSpec_o            An FSSpec that specifies the same object as object_t,
  761.                                     suitable for use with the Files API.
  762.     Notes:
  763.                 This call is intended to be used by code that is required to use both the
  764.                 Files API and the FileManager API (or has clients that use both APIs).
  765.                 For example, a piece of code may already exist with an API that uses FSSpecs,
  766.                 but has been converted internally to use the FSObjectRefs; it would use this
  767.                 call to produce an FSSpec as an output for the pre-existing API.
  768.                 
  769.                 It would be best to provide an API that allows its clients to use FSObjectRefs.
  770. */
  771. /**/
  772. /*
  773.     Function:    FSSpecGetFSObjectRef
  774.     Purpose:    Return an FSObjectRef for an object specified via an FSSpec.
  775.     Inputs:
  776.                 theFSSpec_t            An FSSpec for the object.
  777.     Outputs:
  778.                 theObject_o            An FSObjectRef for the object.
  779.     Notes:
  780.                 This call is intended to be used by code that is required to use both the
  781.                 Files API and the FileManager API (or has clients that use both APIs).
  782.                 For example, a piece of code may already exist with an API that uses FSSpecs,
  783.                 but has been converted internally to use the FSObjectRefs; it would use this
  784.                 call to take an input FSSpec and convert it to an FSObjectRef to use internally;
  785.                 the FSObjectRef would then be disposed before completing the call.
  786.                 
  787.                 It would be best to provide an API that allows its clients to use FSObjectRefs.
  788. */
  789. /*
  790.     Function:    FSVolumeGetInformation
  791.     Purpose:    Get the volume object ref for a given volume object ID.
  792.     Inputs:
  793.                 volume_t        The volume's object ID.
  794.     Outputs:
  795.                 object_o        The volume's object ref.
  796.     Notes:
  797. */
  798. #endif
  799. #endif
  800.  
  801. #endif /* __SOMIDL__ */
  802.  
  803. #endif /* __FILEMANAGER_IDL__ */
  804.  
  805.